Metadata-Version: 2.1
Name: Python DDNS
Version: 2.0.0
Summary: A DDNS client that updates with current IP.Currently only Cloudflare is supported.
Home-page: https://gitlab.com/Cyb3r-Jak3/python-ddns
Author: Jacob White
Author-email: jake@jwhite.network
License: GPL-3.0
Project-URL: Issues, https://gitlab.com/Cyb3r-Jak3/python-ddns/issues
Description: # Python-DDNS
        
        [![GitHub license](https://img.shields.io/github/license/Cyb3r-Jak3/python-ddns?style=flat-square)](https://github.com/Cyb3r-Jak3/python-ddns/blob/master/LICENSE.md) ![GitHub last commit](https://img.shields.io/github/last-commit/Cyb3r-Jak3/python-ddns?style=flat-square)
        
        [![PyPI](https://img.shields.io/pypi/v/Python-DDNS?style=flat-square)](https://pypi.org/project/Python-DDNS/)
        ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/python-ddns?style=flat-square)  
        
        [![Gitlab pipeline status (branch)](https://img.shields.io/gitlab/pipeline/Cyb3r-Jak3/python-ddns/master?style=flat-square)](https://gitlab.com/Cyb3r-Jak3/python-ddns/pipelines)
        [![Maintainability](https://api.codeclimate.com/v1/badges/fc98f6f42dc23a78ab22/maintainability)](https://codeclimate.com/github/Cyb3r-Jak3/python-ddns/maintainability)
        
        This is program written in python that acts as a DDNS client, currently just for Cloudflare. Planning for Hurricane Electric and DNSimple.
        Works on python3 and up.  
        
        ## Python Install
        
        The recommended way is to use pip to install it.  
        There is a package available on [pypi](https://pypi.org/project/Python-DDNS/).
        
        ```bash
        pip install python-ddns
        # Setups the config file to the right name
        pddns -i
        
        # Modify config.conf with the require fields.
        
        # To test configuration
        pddns -t
        # Edit crontab to run script
        crontab -e
        # Add
        0 * * * * <path/to/pddns> >/dev/null 2>&1 #Updates every hour.
        ```
        
        ## Source Install
        
        Source install if you would rather install it that way.
        
        ```bash
        git clone https://github.com/Cyb3r-Jak3/python-ddns
        cd python-ddns/
        python setup.py install
        # Setups the config file to the right name
        pddns -i
        
        # Modify config.conf with the require fields.
        
        # To test configuration
        pddns -t
        # Edit crontab to run script
        crontab -e
        # Add
        0 * * * * <path/to/pddns> >/dev/null 2>&1 #Updates every hour.
        ```
        
        ### TODO
        
        - Easier config editing
        - Better service functionality
        - Other DNS systems supported
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: System :: Installation/Setup
Classifier: Development Status :: 2 - Pre-Alpha
Requires-Python: >=3
Description-Content-Type: text/markdown
